FILEFIND.LAST_WRITE_TIME Function
Syntax
Write_Time as T = fileFindObj.Last_Write_Time()
Returns
- Write_TimeTime
Returns the time the file was last written to.
Description
The .LAST_WRITE_TIME() method returns the time the file was last written to.
Example
dim ptr as P
ptr = FILEFIND.first("c:\*.txt", FILE_FIND_NORMAL)
? ptr.last_access_time()
= 02/27/2003 04:51:35 12 pm
? ptr.last_write_time()
= 02/27/2003 04:51:35 12 pm
? ptr.name()
= "c:\Button.Txt" BSee Also